home *** CD-ROM | disk | FTP | other *** search
/ Programming Microsoft Visual Basic .NET / Programming Microsoft Visual Basic .NET (Microsoft Press)(X08-78517)(2002).bin / 24 aspnet applications / aspnetapplications / startupform.aspx.vb < prev    next >
Encoding:
Text File  |  2002-03-18  |  1.6 KB  |  36 lines

  1. Public Class StartupForm
  2.     Inherits System.Web.UI.Page
  3.     Protected WithEvents HyperLink2 As System.Web.UI.WebControls.HyperLink
  4.     Protected WithEvents HyperLink3 As System.Web.UI.WebControls.HyperLink
  5.     Protected WithEvents HyperLink4 As System.Web.UI.WebControls.HyperLink
  6.     Protected WithEvents HyperLink5 As System.Web.UI.WebControls.HyperLink
  7.     Protected WithEvents HyperLink6 As System.Web.UI.WebControls.HyperLink
  8.     Protected WithEvents HyperLink7 As System.Web.UI.WebControls.HyperLink
  9.     Protected WithEvents LinkButton1 As System.Web.UI.WebControls.LinkButton
  10.     Protected WithEvents HyperLink8 As System.Web.UI.WebControls.HyperLink
  11.     Protected WithEvents HyperLink1 As System.Web.UI.WebControls.HyperLink
  12.  
  13. #Region " Web Form Designer Generated Code "
  14.  
  15.     'This call is required by the Web Form Designer.
  16.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  17.  
  18.     End Sub
  19.  
  20.     Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
  21.         'CODEGEN: This method call is required by the Web Form Designer
  22.         'Do not modify it using the code editor.
  23.         InitializeComponent()
  24.     End Sub
  25.  
  26. #End Region
  27.  
  28.     Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  29.         'Put user code to initialize the page here
  30.     End Sub
  31.  
  32.     Private Sub LinkButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LinkButton1.Click
  33.         Throw New ArgumentException()
  34.     End Sub
  35. End Class
  36.